home *** CD-ROM | disk | FTP | other *** search
/ Champak 119 / (Vol 119) Nov 09 2010.iso / Games / the_samurai.swf / scripts / frame_2 / DoAction.as
Text File  |  2010-11-09  |  391b  |  21 lines

  1. totalsize = getBytesTotal();
  2. loadsize = getBytesLoaded();
  3. if(totalesize != 0)
  4. {
  5.    per = Math.floor(loadsize / totalsize * 100);
  6. }
  7. else
  8. {
  9.    per = 0;
  10. }
  11. loading.mc_bar.mc._x = loading.mc_bar.mc._width * (-1 + loadsize / totalsize);
  12. loading.txtPer = String(per) + "%";
  13. if(loadsize >= 1 && totalsize >= 1 && loadsize == totalsize)
  14. {
  15.    play();
  16. }
  17. else
  18. {
  19.    gotoAndPlay(1);
  20. }
  21.